home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / py_compile.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  6KB  |  199 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Routine to "compile" a .py file to a .pyc (or .pyo) file.
  5.  
  6. This module has intimate knowledge of the format of .pyc files.
  7. '''
  8. import __builtin__
  9. import imp
  10. import marshal
  11. import os
  12. import sys
  13. import traceback
  14. MAGIC = imp.get_magic()
  15. __all__ = [
  16.     'compile',
  17.     'main',
  18.     'PyCompileError']
  19.  
  20. class PyCompileError(Exception):
  21.     """Exception raised when an error occurs while attempting to
  22.     compile the file.
  23.  
  24.     To raise this exception, use
  25.  
  26.         raise PyCompileError(exc_type,exc_value,file[,msg])
  27.  
  28.     where
  29.  
  30.         exc_type:   exception type to be used in error message
  31.                     type name can be accesses as class variable
  32.                     'exc_type_name'
  33.  
  34.         exc_value:  exception value to be used in error message
  35.                     can be accesses as class variable 'exc_value'
  36.  
  37.         file:       name of file being compiled to be used in error message
  38.                     can be accesses as class variable 'file'
  39.  
  40.         msg:        string message to be written as error message
  41.                     If no value is given, a default exception message will be given,
  42.                     consistent with 'standard' py_compile output.
  43.                     message (or default) can be accesses as class variable 'msg'
  44.  
  45.     """
  46.     
  47.     def __init__(self, exc_type, exc_value, file, msg = ''):
  48.         exc_type_name = exc_type.__name__
  49.         if exc_type is SyntaxError:
  50.             tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
  51.             errmsg = tbtext.replace('File "<string>"', 'File "%s"' % file)
  52.         else:
  53.             errmsg = 'Sorry: %s: %s' % (exc_type_name, exc_value)
  54.         if not msg:
  55.             pass
  56.         Exception.__init__(self, errmsg, exc_type_name, exc_value, file)
  57.         self.exc_type_name = exc_type_name
  58.         self.exc_value = exc_value
  59.         self.file = file
  60.         if not msg:
  61.             pass
  62.         self.msg = errmsg
  63.  
  64.     
  65.     def __str__(self):
  66.         return self.msg
  67.  
  68.  
  69. if os.name == 'mac':
  70.     import MacOS
  71.     
  72.     def set_creator_type(file):
  73.         MacOS.SetCreatorAndType(file, 'Pyth', 'PYC ')
  74.  
  75. else:
  76.     
  77.     def set_creator_type(file):
  78.         pass
  79.  
  80.  
  81. def wr_long(f, x):
  82.     '''Internal; write a 32-bit int to a file in little-endian order.'''
  83.     f.write(chr(x & 255))
  84.     f.write(chr(x >> 8 & 255))
  85.     f.write(chr(x >> 16 & 255))
  86.     f.write(chr(x >> 24 & 255))
  87.  
  88.  
  89. def compile(file, cfile = None, dfile = None, doraise = False):
  90.     """Byte-compile one Python source file to Python bytecode.
  91.  
  92.     Arguments:
  93.  
  94.     file:    source filename
  95.     cfile:   target filename; defaults to source with 'c' or 'o' appended
  96.              ('c' normally, 'o' in optimizing mode, giving .pyc or .pyo)
  97.     dfile:   purported filename; defaults to source (this is the filename
  98.              that will show up in error messages)
  99.     doraise: flag indicating whether or not an exception should be
  100.              raised when a compile error is found. If an exception
  101.              occurs and this flag is set to False, a string
  102.              indicating the nature of the exception will be printed,
  103.              and the function will return to the caller. If an
  104.              exception occurs and this flag is set to True, a
  105.              PyCompileError exception will be raised.
  106.  
  107.     Note that it isn't necessary to byte-compile Python modules for
  108.     execution efficiency -- Python itself byte-compiles a module when
  109.     it is loaded, and if it can, writes out the bytecode to the
  110.     corresponding .pyc (or .pyo) file.
  111.  
  112.     However, if a Python installation is shared between users, it is a
  113.     good idea to byte-compile all modules upon installation, since
  114.     other users may not be able to write in the source directories,
  115.     and thus they won't be able to write the .pyc/.pyo file, and then
  116.     they would be byte-compiling every module each time it is loaded.
  117.     This can slow down program start-up considerably.
  118.  
  119.     See compileall.py for a script/module that uses this module to
  120.     byte-compile all installed files (or all files in selected
  121.     directories).
  122.  
  123.     """
  124.     f = open(file, 'U')
  125.     
  126.     try:
  127.         timestamp = long(os.fstat(f.fileno()).st_mtime)
  128.     except AttributeError:
  129.         timestamp = long(os.stat(file).st_mtime)
  130.  
  131.     codestring = f.read()
  132.     f.close()
  133.     if codestring and codestring[-1] != '\n':
  134.         codestring = codestring + '\n'
  135.     
  136.     
  137.     try:
  138.         if not dfile:
  139.             pass
  140.         codeobject = __builtin__.compile(codestring, file, 'exec')
  141.     except Exception:
  142.         err = None
  143.         if not dfile:
  144.             pass
  145.         py_exc = PyCompileError(err.__class__, err.args, file)
  146.         if doraise:
  147.             raise py_exc
  148.         else:
  149.             sys.stderr.write(py_exc.msg)
  150.             return None
  151.     except:
  152.         doraise
  153.  
  154.     if cfile is None:
  155.         if not __debug__ or 'c':
  156.             pass
  157.         cfile = file + 'o'
  158.     
  159.     fc = open(cfile, 'wb')
  160.     fc.write('\x00\x00\x00\x00')
  161.     wr_long(fc, timestamp)
  162.     marshal.dump(codeobject, fc)
  163.     fc.flush()
  164.     fc.seek(0, 0)
  165.     fc.write(MAGIC)
  166.     fc.close()
  167.     set_creator_type(cfile)
  168.  
  169.  
  170. def main(args = None):
  171.     """Compile several source files.
  172.  
  173.     The files named in 'args' (or on the command line, if 'args' is
  174.     not specified) are compiled and the resulting bytecode is cached
  175.     in the normal manner.  This function does not search a directory
  176.     structure to locate source files; it only compiles files named
  177.     explicitly.
  178.  
  179.     """
  180.     if args is None:
  181.         args = sys.argv[1:]
  182.     
  183.     for filename in args:
  184.         
  185.         try:
  186.             compile(filename, doraise = True)
  187.         continue
  188.         except PyCompileError:
  189.             err = None
  190.             sys.stderr.write(err.msg)
  191.             continue
  192.         
  193.  
  194.     
  195.  
  196. if __name__ == '__main__':
  197.     main()
  198.  
  199.